home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d11 / rne_read.arc / README.TXT < prev    next >
Encoding:
Text File  |  1991-03-04  |  6.6 KB  |  140 lines

  1.  
  2.  
  3.  
  4.         Purpose: ***
  5.         This is a batch file menu system that will, hopefully, make 
  6.         using the file list from Rusty n Edie's BBS a bit less 
  7.         daunting. When you make a selection from the menu(s), the 
  8.         program will "unzip" the appropriate directory from the 
  9.         archived file list and display it with Vernon Buerg's fine 
  10.         program, LIST.COM, that not only allows you to scroll up and 
  11.         down the list, but also has a powerful search feature which 
  12.         will allow you to search for file names or key words. When you 
  13.         exit LIST, the program will return you to the main menu.
  14.  
  15.  
  16.         Liability: ***
  17.         Although I don't think use of this program will cause any harm 
  18.         to you, your computer, or the environment, you use it at your 
  19.         own risk. No guarantee is made or implied that this program 
  20.         will work properly on your computer.
  21.  
  22.  
  23.         Requirements: ***
  24.         1. The file PKUNZIP.EXE must be present in the default 
  25.         directory or in your path statement.
  26.         2. The file LIST.COM must be present in the default directory 
  27.         or in your path statement.
  28.         3. The file FILELIST.ZIP from Rusty n Edie's BBS. This is the 
  29.         master BBS file list for Rusty n Edie's in an archived form.
  30.         4. Since the screens are in color and use ANSI commands, you 
  31.         need to be running ANSI.SYS. This is loaded by means of a 
  32.         statement in your CONFIG.SYS file which is usually located in 
  33.         the root directory of your boot drive (usually A: or C:) If 
  34.         you are not running ANSI, put the following statement in your 
  35.         CONFIG.SYS:
  36.                        DEVICE=[d:\][dir\]ANSI.SYS
  37.         for example:
  38.                          DEVICE=C:\DOS\ANSI.SYS 
  39.         5. A color EGA or VGA monitor. You can try it on CGA or mono, 
  40.         but I make no guarantee as to aesthetics . . . ansi.sys, 
  41.         however, is absolutely necessary.
  42.         6. The files NOCURS.COM, NORMAL.COM and REPLY.COM are included 
  43.         in the archive. Their authorship and ownership have become 
  44.         lost over the years, but I acknowledge the contribution made 
  45.         by these unknown persons.
  46.  
  47.  
  48.         Installation: ***
  49.         I would suggest you make a separate subdirectory for this 
  50.         program. Place FILELIST.ZIP in the subdirectory (do NOT unzip 
  51.         this file, the program will unzip the individual directories 
  52.         as needed) then unzip this archive file into the subdirectory.
  53.  
  54.  
  55.         Use: ***
  56.         To start the menu, just enter RE at the DOS prompt. The main 
  57.         menu will be displayed from which you can choose a submenu or 
  58.         be returned to DOS.
  59.  
  60.         If you choose a submenu, another menu will be displayed from 
  61.         which you can choose the specific BBS file list you want to 
  62.         look at. The selected file list will be displayed by LIST.COM 
  63.         which will allow you to scroll up and down or use the powerful 
  64.         search feature to find a file name or key word. If you are not 
  65.         familiar with LIST.COM, enter h or H to display a help screen.
  66.         When you exit LIST, you will be returned to the main menu. 
  67.         From here you can either select another menu or return to DOS.
  68.  
  69.         When you exit the program, your screen will be set to the 
  70.         default colors of bright green on blue (hey, I like it). If 
  71.         you prefer some other default color, you may edit the file 
  72.         RE.BAT to change the default to any color(s) you like. Near 
  73.         the end of the file you will see the statement
  74.  
  75.                             echo E[1;32;44m  
  76.              (E represents the ascii escape character 27)
  77.  
  78.         The ascii escape character 27 may display differently in your 
  79.         editor but it is ESSENTIAL to the proper functioning of the 
  80.         batch file . . . you may edit any of the numbers, but unless 
  81.         you know how to fix the ansi codes, don't mess with 'em. The 
  82.         ansi color codes are as follows:
  83.  
  84.                   Color:        Foreground:    Background:
  85.                   Black            30             40
  86.                   Red              31             41
  87.                   Green            32             42
  88.                   Yellow           33             43
  89.                   Blue             34             44
  90.                   Magenta          35             45
  91.                   Cyan             36             46
  92.                   White            37             47
  93.  
  94.                   Attributes:
  95.                   0 = all attributes off (white on black)
  96.                   1 = bold on (high intensity)
  97.                   2 = normal intensity
  98.                   4 = underscore on (monochrome text display only)
  99.                   5 = blink on
  100.                   7 = reverse video on
  101.                   8 = canceled on (characters invisible)
  102.  
  103.         So, if you would like to change to bright yellow on red, you 
  104.         would change the above statement to read:
  105.  
  106. :             echo E[1;33;41m  (don't forget the lower case m)
  107.  
  108.  
  109.         Acknowledgements: ***
  110.         PKZ110.EXE is a product of PKWare, Inc., 7545 N. Port 
  111.         Washington Rd., Glendale, WI, 53217
  112.         LIST.COM is written and distributed by Vernon D. Buerg
  113.         * Both programs are copyrighted material distributed under the 
  114.         Shareware concept of marketing. If you use these programs 
  115.         beyond a reasonable evaluation period, a registration fee 
  116.         should be paid to the authors.
  117.  
  118.  
  119.         Misc: ***
  120.         If you use the fine command.com replacement program, 4DOS, you 
  121.         can speed up the execution of these batch files by renaming 
  122.         all the .bat files to .btm. This is easily done with the DOS 
  123.         command REN *.BAT *.BTM
  124.  
  125.         As the file list from Rusty n Edie's BBS evolves, I will try 
  126.         keep an updated version on the BBS. Because the program is all 
  127.         batch files, and thus uncompiled, it should be a relatively 
  128.         simple matter for you to upgrade the files yourself as the 
  129.         need arises. If you need to change the menu screens themselves 
  130.         (menum through menu5), this is easily done with the program 
  131.         THEDRAW which can be found on most quality BBS's.
  132.  
  133.         If you have any problems, suggestions or comments regarding 
  134.         this program, you can leave e-mail to me, Carl Kesner, on 
  135.         Rusty n Edie's BBS. I can also be reached on my own BBS, 
  136.         2-Brothers East BBS at (216)534-3739. Online 24 hours, 7 days
  137.         a week.
  138.  
  139.         Hope you enjoy it.
  140.